home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / utils / file / managers / git-4.3 / git-4 / git-4.3.7 / man / Makefile.in < prev   
Encoding:
Makefile  |  1995-07-10  |  1.7 KB  |  77 lines

  1.  
  2. ###############################################################################
  3. #                                          #
  4. #          Makefile for GNU Interactive Tools 4.3.7              #
  5. #      Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.          #
  6. #                                          #
  7. ###############################################################################
  8.  
  9.  
  10. #
  11. #   If you make changes in this file in order to compile GIT on a system not
  12. # included in the file PLATFORMS, please send me a patch. My internet address
  13. # is tudor@chang.pub.ro. I'll include it in the next release. Thanks.
  14. #
  15.  
  16. #
  17. # GIT default install directory. You may change this if you want to install
  18. # the GIT package in a different place.
  19. #
  20.  
  21.  
  22. PRODUCT        = "@PRODUCT@"
  23. VERSION        = "@VERSION@"
  24.  
  25.  
  26. srcdir        = @srcdir@
  27. VPATH        = @srcdir@
  28.  
  29. prefix        = @prefix@
  30. mandir        = $(prefix)/man/man1
  31.  
  32. SHELL        = /bin/sh
  33. INSTALL        = @INSTALL@
  34. INSTALL_PROGRAM    = @INSTALL_PROGRAM@
  35. INSTALL_DATA    = @INSTALL_DATA@
  36. HOST        = @HOST@
  37.  
  38.  
  39. GIT_MANUALS    = git.1 gitmatch.1 gitaction.1 gitmount.1\
  40.           gitcmp.1 gitkeys.1 gitredir.1 gitrgrep.1
  41.  
  42.  
  43. man:
  44.  
  45. installdirs:
  46.     @$(srcdir)/../mkinstalldirs $(mandir)
  47.     chmod 755 $(mandir)
  48.  
  49. install:
  50.     for i in $(GIT_MANUALS);\
  51.     do\
  52.         $(INSTALL_DATA) $(srcdir)/$$i $(mandir)/$$i;\
  53.     done
  54.     \
  55.     for i in gitps.1 gitview.1;\
  56.     do\
  57.         rm -f $(mandir)/$$i;\
  58.         ln $(mandir)/git.1 $(mandir)/$$i;\
  59.     done
  60.  
  61. uninstall:
  62.     cd $(mandir) && rm -f $(GIT_MANUALS) gitps.1 gitview.1
  63.  
  64. clean:
  65.     rm -f *~ core* tutu* gogu*
  66.  
  67. mostlyclean: clean
  68.  
  69. distclean: clean
  70.     rm -f Makefile config.status config.log config.cache
  71.  
  72. realclean: distclean
  73.  
  74. # Tell version [3.59,3.63) of GNU make not to export all variables.
  75. # Otherwise a system limit (for SysV at least) may be exceeded.
  76. .NOEXPORT:
  77.